home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / fqdn.nasl < prev    next >
Text File  |  2005-01-14  |  810b  |  37 lines

  1.  
  2. if(description)
  3. {
  4.  script_id(12053);
  5.  script_version ("$Revision: 1.2 $");
  6.  
  7.  name["english"] = "Host FQDN";
  8.  script_name(english:name["english"]);
  9.  
  10.  desc["english"] = "
  11. This plugin writes the host FQDN as it could be resolved in the report. 
  12. There is no security issue associated to it.
  13.  
  14. Risk factor : None";
  15.  
  16.  
  17.  script_description(english:desc["english"]);
  18.  
  19.  summary["english"] = "Performs a name resolution";
  20.  
  21.  script_summary(english:summary["english"]);
  22.  
  23.  script_category(ACT_GATHER_INFO);
  24.  
  25.  
  26.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  27.  family["english"] = "General";
  28.  script_family(english:family["english"]);
  29.  exit(0);
  30. }
  31.  
  32.  
  33. if ( get_host_name() != get_host_ip() )
  34. {
  35.  security_note(port:0, data:get_host_ip() + " resolves as " + get_host_name() + ".");
  36. }
  37.